home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / web_dev / files / mwjpp516.exe / %MAINDIR% / Tools / Html / insert Html comment.script < prev    next >
Encoding:
Text File  |  2001-06-19  |  593 b   |  25 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. /**
  5. @Tool: insert HTML Comment~wraps the current selection with 
  6. <!-- ... --> tags. 
  7. @EndTool: 
  8. @Summary: insert HTML Comment~wraps selection with the HTML Comment tag
  9. */
  10.  
  11.  
  12. function DoCommand()
  13. {
  14.   var editor = getActiveEditor();
  15.   if (editor)
  16.   {
  17.     var selection = editor.getSelection();
  18.     editor.insert(selection.endLineIndex, selection.endCharIndex, "-->");
  19.     editor.insert(selection.startLineIndex, selection.startCharIndex, "<!--");
  20.     editor.setActive("insert HTML Comment");
  21.   }
  22. }
  23.  
  24. !!/Script
  25.